home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / New System Software Extensions / ODBC for Macintosh / ODBC Tools / SampleSetup / Sources / ODBCdbmsSetup.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-19  |  481 b   |  24 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    ODBCdbmsSetup.h
  3.  *
  4.  *    (c) Apple Computer, Inc 1993
  5.  */
  6.  
  7. #ifndef __ODBCdbmsSetup__
  8. #define __ODBCdbmsSetup__
  9.  
  10. #define kMaxKeywordLength        (255+1)                /* max keyword length    */
  11. #define kMaxValueLength            (255+1)                /* max value length        */
  12.  
  13. typedef struct
  14. {
  15.     char    name            [kMaxValueLength];
  16.     char    description        [kMaxValueLength];
  17.     char    other            [kMaxValueLength];
  18.     char    translate        [kMaxValueLength];
  19.     char    translateOption    [kMaxValueLength];
  20. }
  21. DataSourceInfo;
  22.  
  23. #endif __ODBCdbmsSetup__
  24.